summaryrefslogtreecommitdiffstats
path: root/src/common/wall_clock.cpp
blob: 817e71d52f7cbe81b6c393529744c9d0ee9c6bef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/steady_clock.h"
#include "common/uint128.h"
#include "common/wall_clock.h"

#ifdef ARCHITECTURE_x86_64
#include "common/x64/cpu_detect.h"
#include "common/x64/native_clock.h"
#endif

namespace Common {

class StandardWallClock final : public WallClock {
public:
    explicit StandardWallClock(u64 emulated_cpu_frequency_, u64 emulated_clock_frequency_)
        : WallClock{emulated_cpu_frequency_, emulated_clock_frequency_, false},
          start_time{SteadyClock::Now()} {}

    std::chrono::nanoseconds GetTimeNS() override {
        return SteadyClock::Now() - start_time;
    }

    std::chrono::microseconds GetTimeUS() override {
        return std::chrono::duration_cast<std::chrono::microseconds>(GetTimeNS());
    }

    std::chrono::milliseconds GetTimeMS() override {
        return std::chrono::duration_cast<std::chrono::milliseconds>(GetTimeNS());
    }

    u64 GetClockCycles() override {
        const u128 temp = Common::Multiply64Into128(GetTimeNS().count(), emulated_clock_frequency);
        return Common::Divide128On32(temp, NS_RATIO).first;
    }

    u64 GetCPUCycles() override {
        const u128 temp = Common::Multiply64Into128(GetTimeNS().count(), emulated_cpu_frequency);
        return Common::Divide128On32(temp, NS_RATIO).first;
    }

    void Pause([[maybe_unused]] bool is_paused) override {
        // Do nothing in this clock type.
    }

private:
    SteadyClock::time_point start_time;
};

#ifdef ARCHITECTURE_x86_64

std::unique_ptr<WallClock> CreateBestMatchingClock(u64 emulated_cpu_frequency,
                                                   u64 emulated_clock_frequency) {
    const auto& caps = GetCPUCaps();
    u64 rtsc_frequency = 0;
    if (caps.invariant_tsc) {
        rtsc_frequency = caps.tsc_frequency ? caps.tsc_frequency : EstimateRDTSCFrequency();
    }

    // Fallback to StandardWallClock if the hardware TSC does not have the precision greater than:
    // - A nanosecond
    // - The emulated CPU frequency
    // - The emulated clock counter frequency (CNTFRQ)
    if (rtsc_frequency <= WallClock::NS_RATIO || rtsc_frequency <= emulated_cpu_frequency ||
        rtsc_frequency <= emulated_clock_frequency) {
        return std::make_unique<StandardWallClock>(emulated_cpu_frequency,
                                                   emulated_clock_frequency);
    } else {
        return std::make_unique<X64::NativeClock>(emulated_cpu_frequency, emulated_clock_frequency,
                                                  rtsc_frequency);
    }
}

#else

std::unique_ptr<WallClock> CreateBestMatchingClock(u64 emulated_cpu_frequency,
                                                   u64 emulated_clock_frequency) {
    return std::make_unique<StandardWallClock>(emulated_cpu_frequency, emulated_clock_frequency);
}

#endif

std::unique_ptr<WallClock> CreateStandardWallClock(u64 emulated_cpu_frequency,
                                                   u64 emulated_clock_frequency) {
    return std::make_unique<StandardWallClock>(emulated_cpu_frequency, emulated_clock_frequency);
}

} // namespace Common